home *** CD-ROM | disk | FTP | other *** search
/ Computer Active Guide 2009 February / UG2.ISO / Programos / OutpostSecuritySuiteProInstall_samag.exe / {code_GetUserTempDir} / sdi / afwcore.inf < prev    next >
Encoding:
Windows Setup INFormation  |  2008-12-16  |  3.7 KB  |  155 lines

  1. [Version]
  2. Signature   = "$Windows NT$"
  3. Class       = LegacyDriver                         ;This is determined by the work this filter driver does
  4. ClassGuid   = {8ecc055d-047f-11d1-a537-0000f8753ed1}
  5. Provider    = %AGTM% 
  6. CatalogFile    = afwcore.cat
  7. DriverVer=12/16/2008,1.0.366.9616
  8.  
  9.  
  10. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  11. ;         Uninstall
  12. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  13. ;All OS
  14.  
  15. [DefaultUninstall]
  16. DelFiles = DriverFiles
  17.  
  18. [DefaultUninstall.Services]
  19. DelService = afwcore
  20.  
  21. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  22. ;         Install
  23. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  24. ; not support
  25. ;[DefaultInstall]
  26. ;CopyFiles = Files
  27.  
  28. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  29. ;Windows 2000
  30.  
  31. [Install2000]
  32. CopyFiles = Files2000
  33.  
  34. [Files2000]
  35. afwcore.sys,\i386\Targets\free\w2k\afwcore.sys,,2
  36.  
  37. [Install2000.Services]
  38. AddService = afwcore,,Service.Install
  39.  
  40. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  41. ;Windows XP and later
  42.  
  43. [InstallXP]
  44. CopyFiles = FilesXP
  45.  
  46. [FilesXP]
  47. afwcore.sys,\i386\Targets\free\wxp\afwcore.sys,,2
  48.  
  49. [InstallXP.Services]
  50. AddService = afwcore,,Service.Install
  51.  
  52. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  53. ;Windows XP x64
  54.  
  55. [InstallXP64]
  56. CopyFiles = FilesXP64
  57.  
  58. [FilesXP64]
  59. afwcore.sys,\amd64\Targets\free\wnet\afwcore.sys,,2
  60.  
  61. [InstallXP64.Services]
  62. AddService = afwcore,,Service.Install
  63.  
  64. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  65. ;Windows Vista
  66.  
  67. [InstallVista]
  68. CopyFiles = FilesVista
  69.  
  70. [FilesVista]
  71. afwcore.sys,\i386\Targets\free\wlh\afwcore.sys,,2
  72.  
  73. [InstallVista.Services]
  74. AddService = afwcore,,Service.Install
  75.  
  76. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  77. ;Windows Vista x64
  78.  
  79. [InstallVista64]
  80. CopyFiles = FilesVista64
  81.  
  82. [FilesVista64]
  83. afwcore.sys,\amd64\Targets\free\wlh\afwcore.sys,,2
  84.  
  85. [InstallVista64.Services]
  86. AddService = afwcore,,Service.Install
  87.  
  88. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  89. ;    Copy locations
  90. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  91.  
  92. [DestinationDirs]
  93. DefaultDestDir = 12    ; Copy to <SystemRoot>\System32
  94. DriverFiles = 12
  95. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  96. ;    Source Files Location
  97. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  98.  
  99. [DriverFiles]
  100. afwcore.sys
  101.  
  102. [SourceDisksNames]
  103. 1 = %AfwCoreServiceDesc%,,,
  104.  
  105. [SourceDisksFiles]
  106. ; filename_on_source = diskID[, [subdir][, size]]
  107. afwcore.inf   = 1, ""
  108. afwcore.sys   = 1, \i386\Targets\free\w2k
  109. afwcore.sys   = 1, \i386\Targets\free\wxp
  110. afwcore.sys   = 1, \amd64\Targets\free\wnet
  111. afwcore.sys   = 1, \i386\Targets\free\wlh
  112. afwcore.sys   = 1, \amd64\Targets\free\wlh
  113.  
  114. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  115. ;    Services installation
  116. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  117.  
  118. [Service.Install] 
  119. DisplayName      = %AfwCoreServiceName%
  120. Description      = %AfwCoreServiceDesc%
  121. ServiceType      = %SERVICE_KERNEL_DRIVER% 
  122. StartType        = %SERVICE_DEMAND_START% 
  123. ErrorControl     = %SERVICE_ERROR_NORMAL% 
  124. ServiceBinary    = %12%\afwcore.sys 
  125.  
  126.  
  127. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  128. ;    Strings
  129. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  130.  
  131. [Strings] 
  132.  
  133. ;Localizable Strings
  134.  
  135. AGTM                   = "Agnitum" 
  136. AfwCoreServiceName     = "afwcore" 
  137. AfwCoreServiceDesc       = "Agnitum Firewall Core Driver" 
  138.  
  139. ;Non Localizable Strings
  140.  
  141. SERVICE_BOOT_START     = 0x0 
  142. SERVICE_SYSTEM_START   = 0x1 
  143. SERVICE_AUTO_START     = 0x2 
  144. SERVICE_DEMAND_START   = 0x3 
  145. SERVICE_DISABLED       = 0x4 
  146.  
  147. SERVICE_KERNEL_DRIVER  = 0x1 
  148. SERVICE_ERROR_IGNORE   = 0x0 
  149. SERVICE_ERROR_NORMAL   = 0x1 
  150. SERVICE_ERROR_SEVERE   = 0x2 
  151. SERVICE_ERROR_CRITICAL = 0x3 
  152.  
  153. REG_EXPAND_SZ = 0x00020000 
  154. REG_DWORD     = 0x00010001 
  155.